home *** CD-ROM | disk | FTP | other *** search
/ Tampa Bay Devil Rays 2000 / Tampa Bay Devil Rays 2000.iso / lingo.ini < prev    next >
Text File  |  2000-01-28  |  1KB  |  35 lines

  1. -- This is the text file LINGO.INI.  It is designed
  2. -- to tell Director for Windows what XObjects or
  3. -- DLLs should be loaded when starting DIRECTOR.EXE.
  4.  
  5. -- You should have a copy of this file and the associated
  6. -- DLL file (for example, FILEIO.DLL) in the same 
  7. -- location as any Projector you wish to distribute.
  8. -- Otherwise, the Projector will not be able to utilize
  9. -- the features of the DLL you want to use.
  10.  
  11. -- To comment out one of the lines below, use two dashes (--)
  12. -- as in the beginning of these lines.
  13.  
  14. on startup
  15. -- put "Now loading LINGO.INI"&&the date&&the time
  16. -- put "This computer is running in "&& the colorDepth &"-bit color depth."
  17. --  set the centerStage to TRUE
  18.     -- Following line prevents crashes on Windows systems when using math functions 
  19.     -- such as power or log and passing bogus or extremely large/small values.
  20.     -- Invoking the float->string conversion code  with a valid value prevents
  21.     -- future crashes in this routine.  drs  1mar96 
  22.     if string(0.0)="a" then nothing
  23.     
  24.     ---Fix problem with sounds not playing if Intel RSX is installed
  25.    set the soundkeepdevice to 0
  26.     --beep
  27.     --Added to look for files in the "media" 
  28.     --subdirectory
  29.     global tbsearchpath
  30.     set tbsearchpath=[]
  31.     append(tbsearchpath, the applicationPath & "media\")    
  32.     --append(tbsearchpath, the applicationPath & "Websaverlive\")        
  33. end startup
  34.  
  35.